home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / datamake / datamake.dpr next >
Text File  |  1995-12-22  |  186b  |  14 lines

  1. program Datamake;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1},
  6.   OpenDB in 'OPENDB.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.